home *** CD-ROM | disk | FTP | other *** search
/ United Public Domain Gold 2 / United Public Domain Gold 2.iso / education / pe021.dms / pe021.adf / StarProbe / FILTER.C < prev    next >
Text File  |  1991-06-14  |  189b  |  15 lines

  1. #define LINT_ARGS
  2. #include <stdio.h>
  3.  
  4. main()
  5. {
  6.     int c;
  7.  
  8.     while ((c=fgetc(stdin))!=EOF)
  9.     {
  10.         if (c=='\r')
  11.             c='\n';
  12.         fputc(c, stdout);
  13.     }
  14. }
  15.